home *** CD-ROM | disk | FTP | other *** search
/ CU Amiga Super CD-ROM 4 / CU Amiga Magazine's Super CD-ROM 04 (1996)(EMAP Images)(GB)(Track 1 of 3)[!][issue 1996-11].iso / searchcd < prev    next >
Text File  |  1996-09-26  |  493b  |  21 lines

  1. ; Searches the CD.index file for a specified string
  2.  
  3. Version >NIL: version 37
  4. if WARN
  5.     echo ""
  6.     echo "You need at least version 2.04 of the operating system to run SearchIndex"
  7.     quit
  8. endif
  9.  
  10. CUCD4:Workbench/C/FlashFind CUCD4:CUCD.index `CUCD4:Workbench/C/RequestString TITLE "Search CD Index" BODY "Please enter the string to search for"` >RAM:Found.tmp
  11.  
  12. Version >NIL: version 39
  13. if WARN
  14.     AmigaGuide RAM:Found.tmp
  15. else
  16.     MultiView RAM:Found.tmp
  17. endif
  18.  
  19. delete >NIL: RAM:found.tmp
  20.  
  21.